home *** CD-ROM | disk | FTP | other *** search
/ Grand Slam 3 / Grand Slam 3.iso / 002 / labtst33.arj / BBS.ARJ / PCBTEST.BAT < prev    next >
DOS Batch File  |  1995-01-11  |  781b  |  23 lines

  1. @echo off
  2.  
  3. REM When we are certain that this is an uploaded fine, i.e. %2 == UPLOAD,
  4. REM then set the environment variabl DIZ to point to the path of the
  5. REM description file PCBOARD has written for us.
  6.  
  7. if %2 == TEST GOTO TESTIT
  8. if %2 == UPLOAD SET DIZ=%3
  9.  
  10. C:\LT33\LABTEST.EXE %1 /O /EC:\PCB /NODE1
  11. IF ERRORLEVEL 1 ECHO The file has failed testing by Labtest! > PCBFAIL.TXT
  12. IF ERRORLEVEL 0 ECHO The file has passed testing by Labtest! > PCBPASS.TXT
  13. GOTO END
  14.  
  15. :TESTIT
  16. C:\LT33\LABTEST.EXE %1 /O /NC /NR /- /EC:\PCB /NODE1
  17. IF ERRORLEVEL 1 ECHO The file has failed testing by Labtest! > PCBFAIL.TXT
  18. IF ERRORLEVEL 0 ECHO The file has passed testing by Labtest! > PCBPASS.TXT
  19.  
  20. :END
  21. REM We must always reset the DIZ variable so it doesn't mess up Labtest!
  22. SET DIZ=
  23.